home *** CD-ROM | disk | FTP | other *** search
/ Aminet 39 / Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso / Aminet / mus / misc / spcli.lha / SongPlayerCLI / Rexx / SpCLI / Select.rexx < prev    next >
OS/2 REXX Batch file  |  2000-08-23  |  556b  |  28 lines

  1. /* 
  2. SongPlayerCLI v1.52 (by Gareth Griffiths)
  3. E-Mail: gazchap@btinternet.com
  4. Select.rexx - Prompts for, and then moves to, a selected file.
  5. */
  6.  
  7. IF ~SHOW('P','SONGPLAYER.1') THEN DO
  8.     ADDRESS COMMAND
  9.     SAY "Can't find ARexx port 'SONGPLAYER.1'"
  10.     EXIT
  11. END
  12.  
  13. OPTIONS RESULTS
  14. ADDRESS COMMAND
  15. PARSE ARG num
  16. IF num = "" THEN DO
  17.     OPTIONS PROMPT 'Enter ID Number: '
  18.     PULL num
  19. END
  20. ADDRESS SONGPLAYER.1
  21. 'SELECT 'num
  22. 'PLAY'
  23. 'GET_TITLE';title=result
  24. 'GET_ARTIST';artist=result
  25. 'GET_SELECTED';index=result
  26. ADDRESS COMMAND
  27. SAY 'Current File: ('index') 'artist': 'title
  28. EXIT